home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / XML Utilities / Professional Programmer XSL IDE / Xselerator25.msi / Data.Cab / F33380_testTreelabelslist.xsl < prev    next >
Encoding:
Extensible Markup Language  |  2002-01-20  |  488 b   |  18 lines

  1. <xsl:stylesheet version="1.0" 
  2. xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  3. >
  4.    <xsl:import href="tree-labels-list.xsl"/>
  5.    
  6.    <!-- This transformation must be applied to:
  7.         numTree.xml 
  8.     -->
  9.  
  10.     <xsl:output indent="yes" omit-xml-declaration="yes"/>
  11.     
  12.     <xsl:template match="/">
  13.       <xsl:call-template name="tree-labels-list">
  14.         <xsl:with-param name="pTree" select="/*"/>
  15.       </xsl:call-template>
  16.     </xsl:template>
  17.     
  18. </xsl:stylesheet>